home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / dsyev.z / dsyev
Encoding:
Text File  |  2002-10-03  |  4.3 KB  |  133 lines

  1.  
  2.  
  3.  
  4. DDDDSSSSYYYYEEEEVVVV((((3333SSSS))))                                                            DDDDSSSSYYYYEEEEVVVV((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      DSYEV - compute all eigenvalues and, optionally, eigenvectors of a real
  10.      symmetric matrix A
  11.  
  12. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  13.      SUBROUTINE DSYEV( JOBZ, UPLO, N, A, LDA, W, WORK, LWORK, INFO )
  14.  
  15.          CHARACTER     JOBZ, UPLO
  16.  
  17.          INTEGER       INFO, LDA, LWORK, N
  18.  
  19.          DOUBLE        PRECISION A( LDA, * ), W( * ), WORK( * )
  20.  
  21. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  22.      These routines are part of the SCSL Scientific Library and can be loaded
  23.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  24.      directs the linker to use the multi-processor version of the library.
  25.  
  26.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  27.      4 bytes (32 bits). Another version of SCSL is available in which integers
  28.      are 8 bytes (64 bits).  This version allows the user access to larger
  29.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  30.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  31.      only one of the two versions; 4-byte integer and 8-byte integer library
  32.      calls cannot be mixed.
  33.  
  34. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  35.      DSYEV computes all eigenvalues and, optionally, eigenvectors of a real
  36.      symmetric matrix A.
  37.  
  38. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  39.      JOBZ    (input) CHARACTER*1
  40.              = 'N':  Compute eigenvalues only;
  41.              = 'V':  Compute eigenvalues and eigenvectors.
  42.  
  43.      UPLO    (input) CHARACTER*1
  44.              = 'U':  Upper triangle of A is stored;
  45.              = 'L':  Lower triangle of A is stored.
  46.  
  47.      N       (input) INTEGER
  48.              The order of the matrix A.  N >= 0.
  49.  
  50.      A       (input/output) DOUBLE PRECISION array, dimension (LDA, N)
  51.              On entry, the symmetric matrix A.  If UPLO = 'U', the leading N-
  52.              by-N upper triangular part of A contains the upper triangular
  53.              part of the matrix A.  If UPLO = 'L', the leading N-by-N lower
  54.              triangular part of A contains the lower triangular part of the
  55.              matrix A.  On exit, if JOBZ = 'V', then if INFO = 0, A contains
  56.              the orthonormal eigenvectors of the matrix A.  If JOBZ = 'N',
  57.              then on exit the lower triangle (if UPLO='L') or the upper
  58.              triangle (if UPLO='U') of A, including the diagonal, is
  59.              destroyed.
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. DDDDSSSSYYYYEEEEVVVV((((3333SSSS))))                                                            DDDDSSSSYYYYEEEEVVVV((((3333SSSS))))
  71.  
  72.  
  73.  
  74.      LDA     (input) INTEGER
  75.              The leading dimension of the array A.  LDA >= max(1,N).
  76.  
  77.      W       (output) DOUBLE PRECISION array, dimension (N)
  78.              If INFO = 0, the eigenvalues in ascending order.
  79.  
  80.      WORK    (workspace/output) DOUBLE PRECISION array, dimension (LWORK)
  81.              On exit, if INFO = 0, WORK(1) returns the optimal LWORK.
  82.  
  83.      LWORK   (input) INTEGER
  84.              The length of the array WORK.  LWORK >= max(1,3*N-1).  For
  85.              optimal efficiency, LWORK >= (NB+2)*N, where NB is the blocksize
  86.              for DSYTRD returned by ILAENV.
  87.  
  88.              If LWORK = -1, then a workspace query is assumed; the routine
  89.              only calculates the optimal size of the WORK array, returns this
  90.              value as the first entry of the WORK array, and no error message
  91.              related to LWORK is issued by XERBLA.
  92.  
  93.      INFO    (output) INTEGER
  94.              = 0:  successful exit
  95.              < 0:  if INFO = -i, the i-th argument had an illegal value
  96.              > 0:  if INFO = i, the algorithm failed to converge; i off-
  97.              diagonal elements of an intermediate tridiagonal form did not
  98.              converge to zero.
  99.  
  100. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  101.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  102.  
  103.      This man page is available only online.
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.